home *** CD-ROM | disk | FTP | other *** search
/ An Introduction to Progr…l Basic 6.0 (4th Edition) / An Introduction to Programming using Visual Basic 6.0.iso / COMMON / TOOLS / VB / CABINETS / MSDAO350.CAB / icontrols / MaskedEdit / ValidationErrorEvent.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-01-08  |  714 b   |  20 lines

  1. package icontrols.MaskedEdit;
  2.  
  3. import com.ms.wd.core.Event;
  4.  
  5. public final class ValidationErrorEvent extends Event {
  6.    public static final int FIELD_FULL = 1;
  7.    public static final int INVALID_CHARACTER = 2;
  8.    public static final int END_OF_FIELD = 3;
  9.    public static final int REQUIRED_CHARACTER = 4;
  10.    public static final int PARSE_ERROR = 5;
  11.    // $FF: renamed from: id int
  12.    public int field_0;
  13.    public int position;
  14.  
  15.    public ValidationErrorEvent(int id, int position) {
  16.       this.field_0 = id;
  17.       this.position = position;
  18.    }
  19. }
  20.